summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/viewholders/GameViewHolder.kt
blob: 51420448f6223c0c5bccbbae2ad623c3faf89c42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

package org.yuzu.yuzu_emu.viewholders

import androidx.recyclerview.widget.RecyclerView
import org.yuzu.yuzu_emu.databinding.CardGameBinding
import org.yuzu.yuzu_emu.model.Game

class GameViewHolder(val binding: CardGameBinding) : RecyclerView.ViewHolder(binding.root) {
    lateinit var game: Game

    init {
        itemView.tag = this
    }
}